(0) Obligation:
Runtime Complexity TRS:
The TRS R consists of the following rules:
times(x, 0) → 0
times(x, s(y)) → plus(times(x, y), x)
plus(s(x), s(y)) → s(s(plus(if(gt(x, y), x, y), if(not(gt(x, y)), id(x), id(y)))))
plus(s(x), x) → plus(if(gt(x, x), id(x), id(x)), s(x))
plus(zero, y) → y
plus(id(x), s(y)) → s(plus(x, if(gt(s(y), y), y, s(y))))
id(x) → x
if(true, x, y) → x
if(false, x, y) → y
not(x) → if(x, false, true)
gt(s(x), zero) → true
gt(zero, y) → false
gt(s(x), s(y)) → gt(x, y)
Rewrite Strategy: FULL
(1) RenamingProof (EQUIVALENT transformation)
Renamed function symbols to avoid clashes with predefined symbol.
(2) Obligation:
Runtime Complexity Relative TRS:
The TRS R consists of the following rules:
times(x, 0') → 0'
times(x, s(y)) → plus(times(x, y), x)
plus(s(x), s(y)) → s(s(plus(if(gt(x, y), x, y), if(not(gt(x, y)), id(x), id(y)))))
plus(s(x), x) → plus(if(gt(x, x), id(x), id(x)), s(x))
plus(zero, y) → y
plus(id(x), s(y)) → s(plus(x, if(gt(s(y), y), y, s(y))))
id(x) → x
if(true, x, y) → x
if(false, x, y) → y
not(x) → if(x, false, true)
gt(s(x), zero) → true
gt(zero, y) → false
gt(s(x), s(y)) → gt(x, y)
S is empty.
Rewrite Strategy: FULL
(3) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)
Infered types.
(4) Obligation:
TRS:
Rules:
times(x, 0') → 0'
times(x, s(y)) → plus(times(x, y), x)
plus(s(x), s(y)) → s(s(plus(if(gt(x, y), x, y), if(not(gt(x, y)), id(x), id(y)))))
plus(s(x), x) → plus(if(gt(x, x), id(x), id(x)), s(x))
plus(zero, y) → y
plus(id(x), s(y)) → s(plus(x, if(gt(s(y), y), y, s(y))))
id(x) → x
if(true, x, y) → x
if(false, x, y) → y
not(x) → if(x, false, true)
gt(s(x), zero) → true
gt(zero, y) → false
gt(s(x), s(y)) → gt(x, y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
(5) OrderProof (LOWER BOUND(ID) transformation)
Heuristically decided to analyse the following defined symbols:
times,
plus,
gtThey will be analysed ascendingly in the following order:
plus < times
gt < plus
(6) Obligation:
TRS:
Rules:
times(
x,
0') →
0'times(
x,
s(
y)) →
plus(
times(
x,
y),
x)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
Generator Equations:
gen_0':s:zero:true:false2_0(0) ⇔ 0'
gen_0':s:zero:true:false2_0(+(x, 1)) ⇔ s(gen_0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
gt, times, plus
They will be analysed ascendingly in the following order:
plus < times
gt < plus
(7) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
gt(
gen_0':s:zero:true:false2_0(
+(
1,
n4_0)),
gen_0':s:zero:true:false2_0(
+(
1,
n4_0))) →
*3_0, rt ∈ Ω(n4
0)
Induction Base:
gt(gen_0':s:zero:true:false2_0(+(1, 0)), gen_0':s:zero:true:false2_0(+(1, 0)))
Induction Step:
gt(gen_0':s:zero:true:false2_0(+(1, +(n4_0, 1))), gen_0':s:zero:true:false2_0(+(1, +(n4_0, 1)))) →RΩ(1)
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) →IH
*3_0
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(8) Complex Obligation (BEST)
(9) Obligation:
TRS:
Rules:
times(
x,
0') →
0'times(
x,
s(
y)) →
plus(
times(
x,
y),
x)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
Lemmas:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
Generator Equations:
gen_0':s:zero:true:false2_0(0) ⇔ 0'
gen_0':s:zero:true:false2_0(+(x, 1)) ⇔ s(gen_0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
plus, times
They will be analysed ascendingly in the following order:
plus < times
(10) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol plus.
(11) Obligation:
TRS:
Rules:
times(
x,
0') →
0'times(
x,
s(
y)) →
plus(
times(
x,
y),
x)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
Lemmas:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
Generator Equations:
gen_0':s:zero:true:false2_0(0) ⇔ 0'
gen_0':s:zero:true:false2_0(+(x, 1)) ⇔ s(gen_0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
times
(12) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
times(
gen_0':s:zero:true:false2_0(
a),
gen_0':s:zero:true:false2_0(
+(
1,
n2381_0))) →
*3_0, rt ∈ Ω(n2381
0)
Induction Base:
times(gen_0':s:zero:true:false2_0(a), gen_0':s:zero:true:false2_0(+(1, 0)))
Induction Step:
times(gen_0':s:zero:true:false2_0(a), gen_0':s:zero:true:false2_0(+(1, +(n2381_0, 1)))) →RΩ(1)
plus(times(gen_0':s:zero:true:false2_0(a), gen_0':s:zero:true:false2_0(+(1, n2381_0))), gen_0':s:zero:true:false2_0(a)) →IH
plus(*3_0, gen_0':s:zero:true:false2_0(a))
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(13) Complex Obligation (BEST)
(14) Obligation:
TRS:
Rules:
times(
x,
0') →
0'times(
x,
s(
y)) →
plus(
times(
x,
y),
x)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
Lemmas:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
times(gen_0':s:zero:true:false2_0(a), gen_0':s:zero:true:false2_0(+(1, n2381_0))) → *3_0, rt ∈ Ω(n23810)
Generator Equations:
gen_0':s:zero:true:false2_0(0) ⇔ 0'
gen_0':s:zero:true:false2_0(+(x, 1)) ⇔ s(gen_0':s:zero:true:false2_0(x))
No more defined symbols left to analyse.
(15) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
(16) BOUNDS(n^1, INF)
(17) Obligation:
TRS:
Rules:
times(
x,
0') →
0'times(
x,
s(
y)) →
plus(
times(
x,
y),
x)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
Lemmas:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
times(gen_0':s:zero:true:false2_0(a), gen_0':s:zero:true:false2_0(+(1, n2381_0))) → *3_0, rt ∈ Ω(n23810)
Generator Equations:
gen_0':s:zero:true:false2_0(0) ⇔ 0'
gen_0':s:zero:true:false2_0(+(x, 1)) ⇔ s(gen_0':s:zero:true:false2_0(x))
No more defined symbols left to analyse.
(18) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
(19) BOUNDS(n^1, INF)
(20) Obligation:
TRS:
Rules:
times(
x,
0') →
0'times(
x,
s(
y)) →
plus(
times(
x,
y),
x)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
times :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
0' :: 0':s:zero:true:false
s :: 0':s:zero:true:false → 0':s:zero:true:false
plus :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
if :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
gt :: 0':s:zero:true:false → 0':s:zero:true:false → 0':s:zero:true:false
not :: 0':s:zero:true:false → 0':s:zero:true:false
id :: 0':s:zero:true:false → 0':s:zero:true:false
zero :: 0':s:zero:true:false
true :: 0':s:zero:true:false
false :: 0':s:zero:true:false
hole_0':s:zero:true:false1_0 :: 0':s:zero:true:false
gen_0':s:zero:true:false2_0 :: Nat → 0':s:zero:true:false
Lemmas:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
Generator Equations:
gen_0':s:zero:true:false2_0(0) ⇔ 0'
gen_0':s:zero:true:false2_0(+(x, 1)) ⇔ s(gen_0':s:zero:true:false2_0(x))
No more defined symbols left to analyse.
(21) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
gt(gen_0':s:zero:true:false2_0(+(1, n4_0)), gen_0':s:zero:true:false2_0(+(1, n4_0))) → *3_0, rt ∈ Ω(n40)
(22) BOUNDS(n^1, INF)